ActiveReports 12
ZipEx<T1,T2,TR>(IEnumerable<T1>,IEnumerable<T2>,Func<Int32,T1,T2,TR>) Method

GrapeCity.ActiveReports.v12 Assembly > GrapeCity.Enterprise.Data.DataEngine.Extensions Namespace > EnumerableExtensions Class > ZipEx Method : ZipEx<T1,T2,TR>(IEnumerable<T1>,IEnumerable<T2>,Func<Int32,T1,T2,TR>) Method
The type of the elements of the first input sequence
The type of the elements of the second input sequence
The type of the elements of the result sequence
The first sequence to merge
The second sequence to merge
A function that specifies how to merge the elements from the two sequences
Applies a specified function to the corresponding elements of two sequences, producing a sequence of the results
Syntax
'Declaration
 
Public Overloads Shared Function ZipEx
    (Of T1,T2,TR)( _
   ByVal first As IEnumerable(Of T1), _
   ByVal second As IEnumerable(Of T2), _
   ByVal selector As Func(Of Integer,T1,T2,TR) _
) As IEnumerable(Of TR)

Parameters

first
The first sequence to merge
second
The second sequence to merge
selector
A function that specifies how to merge the elements from the two sequences

Type Parameters

T1
The type of the elements of the first input sequence
T2
The type of the elements of the second input sequence
TR
The type of the elements of the result sequence

Return Value

An IEnumerable that contains merged elements of two input sequences
See Also

Reference

EnumerableExtensions Class
EnumerableExtensions Members
Overload List